home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
By Popular Request 2.0
/
By Popular Request 2.0 (Arsenal Computer).ISO
/
amiga_2
/
cd32gods.lha
/
savekick.c
< prev
Wrap
C/C++ Source or Header
|
1995-04-23
|
392b
|
27 lines
/*
kicksaver
i just want to analyse the CD│▓ ROM,
writing this comment took longer than
"programming" and compiling this - aeh -
program ;-)
*/
#include <exec/exec.h>
#include <dos/dos.h>
#include <proto/exec.h>
#include <proto/dos.h>
int main (void)
{
BPTR file;
file = Open ("RAM:kickstart",MODE_NEWFILE);
Write (file,(APTR)0xf80000,524288);
Close(file);
return 0;
}